home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / security / Certificate.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  559 b   |  24 lines

  1. package java.security;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. /** @deprecated */
  8. @Deprecated
  9. public interface Certificate {
  10.    Principal getGuarantor();
  11.  
  12.    Principal getPrincipal();
  13.  
  14.    PublicKey getPublicKey();
  15.  
  16.    void encode(OutputStream var1) throws KeyException, IOException;
  17.  
  18.    void decode(InputStream var1) throws KeyException, IOException;
  19.  
  20.    String getFormat();
  21.  
  22.    String toString(boolean var1);
  23. }
  24.